home *** CD-ROM | disk | FTP | other *** search
/ The Programmer Disk / The Programmer Disk (Microforum).iso / xpro / c / pro14 / bm.h < prev    next >
Text File  |  1986-04-02  |  512b  |  15 lines

  1. #define FIRSTCHAR ' '
  2. #define MAXCHAR 0377
  3. #define MAXBUFF 8192
  4. #define MAXSIZE 100
  5. #define MAXPATS 100 /* max number of patterns */
  6. #define min(x,y) (x) < (y) ? (x) : (y)
  7. #define max(x,y) (x) > (y) ? (x) : (y)
  8. struct PattDesc {
  9.     int *Skip1, *Skip2; /* pointers to skip tables */
  10.     char *Pattern;
  11.     int PatLen; /* pattern length */
  12.     char *Start; /* starting position of search (at beginning of pattern) */
  13.     int Success; /* true when pattern found */
  14. };
  15.